home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / redakcyjne / PEBuilder / pebuilder3110a.exe / {app} / plugin / nero burning rom / nero.cmd next >
OS/2 REXX Batch file  |  2003-10-21  |  999b  |  29 lines

  1. @echo off
  2. rem -------------------------------------------------------------------------
  3. rem nero.cmd - Script to start nero from WinPE
  4. rem Created by Bart Lagerweij.
  5. rem -------------------------------------------------------------------------
  6. echo NERO.CMD: Starting...
  7. setlocal
  8. %~d0
  9. cd "%~dp0"
  10. set _dir=
  11. for /F %%i in ("C D E F G H I J K L M N O P Q R S T U V W X Y Z") do if exist %%i:\nul set _dir=%%i:\
  12. if "%_dir%" == "" goto _err
  13. echo NERO.CMD: Setting nero cache to "%_dir%"
  14. reg.exe add "HKCU\Software\ahead\Nero - Burning Rom\Cache" /v "Path" /t REG_SZ /d "%_dir%\" /f
  15. if errorlevel 1 goto _err
  16. reg.exe add "HKCU\Software\ahead\Nero - Burning Rom\Cache" /v "Use" /t REG_DWORD /d "1" /f
  17. if errorlevel 1 goto _err
  18. goto _end
  19. :_err
  20. echo.
  21. echo NERO.CMD: Warning! - couldn't set cache directory (used by Nero cache)...
  22. echo NERO.CMD: Nero will now use %temp% (temp)
  23. echo NERO.CMD: This can cause cache errors while burning...
  24. echo.
  25. pause.
  26. :_end
  27. start nero.exe
  28. endlocal
  29.